home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / usenet / sources / volume91 / utilitys / star / part01 / ReadMe next >
Text File  |  1991-03-14  |  914b  |  27 lines

  1.    Modelled after Doug Walker's Hello.c, here comes my smallest useful
  2. program ever - 88 bytes executable, no Asm code! Might still be possible to
  3. shave some bytes off, but this would damage the source's readability.
  4.  
  5.    This simply sets the RN_WILDSTAR in the RootNode, executing practically
  6. instantly. 
  7.  
  8.    To remove, change the line:
  9.  
  10.         Root->rn_Flags |= 1 << 24;
  11.  
  12.    into:
  13.  
  14.         Root->rn_Flags &= ~(1 << 24);
  15.  
  16.    and recompile. Feel free to implement removal as an option.
  17.  
  18.    After this, the * character can be used for wildcard if mixed with other
  19. characters. If used alone, two stars must be used ("**") to avoid confusion
  20. with the CON: use of *. This makes sense, as CON: will open a separate
  21. window unlike *.
  22.  
  23.    Permission granted for C= to include this in C:, or to Fred Fish and
  24. everyone else to distribute as much as you want.
  25.  
  26.    Comments to:   Henrik Clausen  ...!rutgers!cbmvax!cbmehq!adspdk!hclausen
  27.